dale roberts basic i/o – scanf() csci 230 department of computer and information science, school...

10
Dale Robert Basic I/O – scanf() Basic I/O – scanf() CSCI 230 Department of Computer and Information Science, School of Science, IUPUI Dale Roberts, Dale Roberts, Lecturer Lecturer Department of Computer and Information Department of Computer and Information Science Science IUPUI IUPUI

Upload: andrew-mcdonald

Post on 18-Dec-2015

216 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: Dale Roberts Basic I/O – scanf() CSCI 230 Department of Computer and Information Science, School of Science, IUPUI Dale Roberts, Lecturer Department of

Dale Roberts

Basic I/O – scanf()Basic I/O – scanf()CSCI 230

Department of Computer and Information Science,School of Science, IUPUI

Dale Roberts, Dale Roberts, LecturerLecturerDepartment of Computer and Information ScienceDepartment of Computer and Information Science

IUPUIIUPUI

Page 2: Dale Roberts Basic I/O – scanf() CSCI 230 Department of Computer and Information Science, School of Science, IUPUI Dale Roberts, Lecturer Department of

Dale Roberts

Formatting Input with Formatting Input with ScanfScanfscanfscanf

Input formattingInput formattingCapabilitiesCapabilities

Input all types of dataInput all types of dataInput specific charactersInput specific charactersSkip specific charactersSkip specific characters

FormatFormat scanfscanf((format-control-stringformat-control-string, other-arguments, other-arguments););Format-control-string: describes formats of inputsFormat-control-string: describes formats of inputs

%*wlx%*wlx[*]:[*]: optional conversion only, result is not stored optional conversion only, result is not stored[w]:[w]: optional minimum width (wider if necessary). The padding character is optional minimum width (wider if necessary). The padding character is

blank normally and zero if the field width was specified with blank normally and zero if the field width was specified with a leading a leading zerozero

[l]:[l]: long integer long integer[x]:[x]: see the table next page see the table next page

Other-argumentsOther-argumentsPointers to variables where input will be stored (Pointers to variables where input will be stored (address of variables)address of variables)

Can include field widths to read a specific number of characters from the streamCan include field widths to read a specific number of characters from the stream

Page 3: Dale Roberts Basic I/O – scanf() CSCI 230 Department of Computer and Information Science, School of Science, IUPUI Dale Roberts, Lecturer Department of

Dale Roberts

Conversion specifier Description

Integers

dd

ii

oouux or Xx or X

h or lh or l

Read an optionally signed decimal integer. The corresponding argument is a pointer to integer

Read an optionally signed decimal, octal, or hexadecimal integer. The corresponding argument is a pointer to integer.

Read an octal integer. The corresponding argument is a pointer to unsigned integer.

Read an unsigned decimal integer. The corresponding argument is a pointer to unsigned integer.

Read a hexadecimal integer. The corresponding argument is a a pointer to unsigned integer.

Place before any of the integer conversion specifiers to indicate that a short or long integer is to be input.

Page 4: Dale Roberts Basic I/O – scanf() CSCI 230 Department of Computer and Information Science, School of Science, IUPUI Dale Roberts, Lecturer Department of

Dale Roberts

Floating-point Numbere,E,f,g,GI or L

Read a floating point value. The corresponding argument is a pointer to a floating point variable.Place before any of the floating point conversion specifiers to indicate that a double or long double value is to be input

Characters and stringscc

ss

Read a character. The corresponding argument is a pointer to char no null (‘\0’) is addedRead a string. The corresponding argument is a pointer to an array of type char that is large enough to hold the string and a terminating null (‘\0’) character which is automatically added.

Page 5: Dale Roberts Basic I/O – scanf() CSCI 230 Department of Computer and Information Science, School of Science, IUPUI Dale Roberts, Lecturer Department of

Dale Roberts

Scan set[scan char Scan a string for a set of characters that are stored in an

array.

Miscellaneousppnn

%%

Read an address of the same form produced when an address is output with %p in a printf statement

Store the number of characters input so far in this scanf. The corresponding argument is a pointer to integer

Skip a percent sign (%) in the input

Page 6: Dale Roberts Basic I/O – scanf() CSCI 230 Department of Computer and Information Science, School of Science, IUPUI Dale Roberts, Lecturer Department of

Dale Roberts

Formatting Input with ScanfFormatting Input with Scanf

Scan setsScan setsSet of characters enclosed in square brackets Set of characters enclosed in square brackets [][]

Preceded by Preceded by %% sign sign

Scans input stream, looking only for characters in scan Scans input stream, looking only for characters in scan setset

Whenever a match occurs, stores character in specified arrayWhenever a match occurs, stores character in specified arrayStops scanning once a character not in the scan set is foundStops scanning once a character not in the scan set is found

Inverted scan setsInverted scan setsUse a caret Use a caret ^̂: : [^aeiou][^aeiou]Causes characters not in the scan set to be storedCauses characters not in the scan set to be stored

Skipping charactersSkipping charactersInclude character to skip in format controlInclude character to skip in format controlOr, use Or, use ** (assignment suppression character) (assignment suppression character)

Skips any type of character without storing itSkips any type of character without storing it

Page 7: Dale Roberts Basic I/O – scanf() CSCI 230 Department of Computer and Information Science, School of Science, IUPUI Dale Roberts, Lecturer Department of

Dale Roberts

1 /* Fig 9.20: fig09_20.c */2 /* Reading characters and strings */3 #include <stdio.h>45 int main()6 { 7 char x, y[ 9 ];8 9 printf( "Enter a string: " );10 scanf( "%c%s", &x, y );1112 printf( "The input was:\n" );13 printf( "the character \"%c\" ", x );14 printf( "and the string \"%s\"\n", y );1516 return 0;17 }

Enter a string: SundayThe input was:the character "S" and the string "unday"

/* initialize variables */

/* input */

/* print */

Example:

Program Output:

Page 8: Dale Roberts Basic I/O – scanf() CSCI 230 Department of Computer and Information Science, School of Science, IUPUI Dale Roberts, Lecturer Department of

Dale Roberts

1 /* Fig 9.22: fig09_22.c */

2 /* Using an inverted scan set */

3 #include <stdio.h>

4

5 int main()

6 {

7 char z[ 9 ] = { '\0' };

8

9 printf( "Enter a string: " );

10 scanf( "%[^aeiou]", z );

11 printf( "The input was \"%s\"\n", z );

12

13 return 0;

14 }

Enter a string: StringThe input was "Str"

/* initialize variables */

/* input *//* print */

Example:

Program Output:

Example:int i,float x;char name[50];scanf(“%d %f %s”, &i, &x, name);With input: 2554.32E-1Thompson

25 i5.432 x“Thompson” name

Page 9: Dale Roberts Basic I/O – scanf() CSCI 230 Department of Computer and Information Science, School of Science, IUPUI Dale Roberts, Lecturer Department of

Dale Roberts

1 /* Fig 9.24: fig09_24.c */2 /* Reading and discarding characters from the input stream */3 #include <stdio.h>45 int main()6 { 7 int month1, day1, year1, month2, day2, year2;8 9 printf( "Enter a date in the form mm-dd-yyyy: " );10 scanf( "%d%*c%d%*c%d", &month1, &day1, &year1 );11 printf( "month = %d day = %d year = %d\n\n", 12 month1, day1, year1 );13 printf( "Enter a date in the form mm/dd/yyyy: " );14 scanf( "%d%*c%d%*c%d", &month2, &day2, &year2 );15 printf( "month = %d day = %d year = %d\n", 16 month2, day2, year2 );1718 return 0;19 }

Enter a date in the form mm-dd-yyyy: 11-18-2000month = 11 day = 18 year = 2000 Enter a date in the form mm/dd/yyyy: 11/18/2000month = 11 day = 18 year = 2000

Example:

Program Output:

Page 10: Dale Roberts Basic I/O – scanf() CSCI 230 Department of Computer and Information Science, School of Science, IUPUI Dale Roberts, Lecturer Department of

Dale Roberts

Other Input / OutputOther Input / Outputputs(line)puts(line) Print a string to standard output and append a newlinePrint a string to standard output and append a newline

ExampleExample:: puts(“12345”);puts(“12345”);

putchar(c)putchar(c) Print a character to standard outputPrint a character to standard outputExample: putchar(‘A’);

gets(line)gets(line) Read a string from standard input (until a newline is entered)Read a string from standard input (until a newline is entered)ExampleExample:: char buf[128];char buf[128];

gets(buf);gets(buf); /* space is OK, and the ‘\n’ won’t be read /* space is OK, and the ‘\n’ won’t be read in */in */Newline will be replaced by ‘\0’Newline will be replaced by ‘\0’

getchar()getchar() Get a character from standard input Get a character from standard input ExampleExample:: int c;int c;

c = getchar(); /* cc = getchar(); /* c must be must be intint */ */

In-memory Format ConversionIn-memory Format Conversionsprintf(string, control, variables);sprintf(string, control, variables);sscanf(string, control, address-of-variables);sscanf(string, control, address-of-variables);ExampleExample:: sprintf(buf, “project%03dsprintf(buf, “project%03d

%02d.dat”,year,month);%02d.dat”,year,month);Sscanf(buf, “project%03dSscanf(buf, “project%03d

%02d”,&year,&month);%02d”,&year,&month);