“C плавает” Ответ

C плавает

// create float and assign value
// print float value to console
#include <stdio.h>

int main()
{
    float pi = 3.14;
    float dollars;
    dollars = 32.27;

    printf("I have %f dollars", dollars);       
  
	// controls the number of numbers shown after the decimal point
    printf("\nI have %0.2f dollars", dollars); 
Dirty Moose

Получите поплавок в C

//get a float from user
//print float value to console
#include <stdio.h>


int main()
{
    //define a float variable
    float a;
    
    //print the prompt
    printf("Please enter a float number: ");
    
    //Actually getting the number
    scanf("%f", &a);
    
    printf("You have entered %f", a);

}
Grumpy Goshawk

что плавает в c

float: It is used to store decimal numbers (numbers with floating point value) with single precision. double: It is used to store decimal numbers (numbers with floating point value) with double precision.
Santino

Ответы похожие на “C плавает”

Вопросы похожие на “C плавает”

Больше похожих ответов на “C плавает” по C

Смотреть популярные ответы по языку

Смотреть другие языки программирования