2021年12月4日 星期六

c語言是非0為1 0為false

 #include <stdio.h>

#include <stdlib.h>

#include <stdbool.h>//c語言是非0為1 0為false 

/* run this program using the console pauser or add your own getch, system("pause") or input loop */


int main() 

{

if(true)

{

printf("OK");

}

return 0;

}

/* compiler就被代換(前置處理,前面取代後面,與變數不一樣)

#define bool _Bool

#define true 1

#define false 0

*/

沒有留言:

張貼留言

algorithm

 #include <iostream> #include <string.h> using namespace std; int main(int argc, char** argv)  { for(int j=2;j<=100;j++)//j...