2019年6月25日 星期二

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

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

源自於 https://www.dropbox.com/s/jv3sya3cwl493kl/Q1.c?dl=0

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

    if (x == 0)                 /* x 要小寫 */
        {
            printf("零");
        }
        else
        {
          if (x > 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...