ช่วยทำโจทย์ภาษา c ให้ทีครับ

เขียนโปรแกรมแยกจำนวนบวก จำนวนลบ และศูนย์ โดยรับค่าจากคีบอร์ดจำนวน 10 ครั้ง จากนั้นให้แสดงว่ามีตัวเลข เต็มบวก เต็มลบ และเต็มศูนย์ กี่จำนวน

อันนี้เป็น code ที่ผมทำครับ แต่ไม่รู้จะไปต่อยังไง

#include<stdio.h>
int count,negative_integer=0,positive_integer=0,zero_integer=0,num,sum=0;
void main () {
        for(count=0;count<=10;count++){
            printf("Enter your number : ");
            scanf("%d",&num);
        }
        for(num=0;num++;){
    
    }
    

ขอบคุณทุกท่านที่เข้ามาตอบนะครับ
คำตอบที่ได้รับเลือกจากเจ้าของกระทู้
ความคิดเห็นที่ 1
#include <stdio.h>
#include <conio.h>
void main()
{       int i;
    int num;
    int po = 0,ze = 0,ne = 0;
    for(i=1;i<=10;i++){
        printf("Number order %d : ",i);
        scanf("%d",&num);
        if(num > 0) {
            po++;
        } else if(num == 0) {
            ze++;
        } else {
            ne++;
        }
    }
    printf("\n-------------------------\n");
    printf("%d Positive Number\n",po);
    printf("%d Zero Number\n",ze);
    printf("%d Negative Number\n",ne);
    getch();
}
แสดงความคิดเห็น
โปรดศึกษาและยอมรับนโยบายข้อมูลส่วนบุคคลก่อนเริ่มใช้งาน อ่านเพิ่มเติมได้ที่นี่