2019年6月25日 星期二

C語言(online c) 寫簡單的 程式 ( 輸入一個數值判斷數值為偶數或奇數 )

C語言(online c) 寫簡單的 程式 ( 輸入一個數值判斷數值為偶數或奇數 )

#include<stdio.h>
#include<math.h>
int main()
{
    int x, f, a, b;
    printf("請輸入一數字( 1~200):\n");
    scanf("%d", &x);
    printf("你輸入的 N=%d\n", x);
    printf("\n1. 此數字是:");

    if (x % 2 == 0)
        printf("偶數");
    else
        printf("奇數");
 
    return 0;     
}     


沒有留言:

張貼留言

2024_09 作業3 以Node-Red 為主

 2024_09 作業3  (以Node-Red 為主  Arduino 可能需要配合修改 ) Arduino 可能需要修改的部分 1)mqtt broker  2) 主題Topic (發行 接收) 3) WIFI ssid , password const char br...